home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 38
/
Amiga Format CD38 (1999-03-15)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-04].iso
/
-in_the_mag-
/
reader_requests
/
dice_v3.15
/
include
/
limits.h
< prev
next >
Wrap
C/C++ Source or Header
|
1999-01-26
|
663b
|
34 lines
/*
* $VER: limits.h 1.0 (17.4.93)
*
* (c)Copyright 1992 Obvious Implementations Corp, All Rights Reserved
*/
#ifndef LIMITS_H
#define LIMITS_H
#define CHAR_BIT 8
#define CHAR_MAX SCHAR_MAX
#define CHAR_MIN SCHAR_MIN
#define SHRT_MAX 32767
#define SHRT_MIN -32768
#define INT_MAX 2147483647
#define INT_MIN -2147483648
#define LONG_MAX 2147483647
#define LONG_MIN -2147483648
#ifndef MB_LEN_MAX
#define MB_LEN_MAX 2 /* also set in stdlib.h */
#endif
#define SCHAR_MAX 127
#define SCHAR_MIN -128
#define UCHAR_MAX 0xFF
#define UINT_MAX 0xFFFFFFFF
#define ULONG_MAX 0xFFFFFFFF
#define USHRT_MAX 0xFFFF
#endif